Skip to content

ReactiveProperty.Create() method

Defined in

Type: ReactiveProperty Namespace: ReactiveUI.Reactive Assembly: ReactiveUI.Reactive.dll

Applies to

net10.0, net10.0-maccatalyst26.0, net10.0-desktop1.0, net10.0-browserwasm1.0, net10.0-tvos26.0, net10.0-windows10.0.19041, net10.0-macos26.0, net10.0-ios26.0, net10.0-android36.0, net9.0, net9.0-tvos18.0, net9.0-macos15.0, net9.0-maccatalyst18.0, net9.0-windows10.0.19041, net9.0-ios18.0, net9.0-desktop1.0, net8.0, net8.0-windows10.0.19041, net8.0-ios18.0, net8.0-maccatalyst18.0, net8.0-macos15.0, net8.0-tvos18.0, net8.0-ios17.5, net8.0-maccatalyst17.5, net8.0-macos14.5, netstandard2.1, net481, net462, net471

Overloads

  • 1. public static ReactiveProperty<T> Create()
  • 2. public static ReactiveProperty<T> Create(T? initialValue)
  • 3. public static ReactiveProperty<T> Create(T? initialValue, bool skipCurrentValueOnSubscribe, bool allowDuplicateValues)
  • 4. public static ReactiveProperty<T> Create(T? initialValue, IScheduler scheduler, bool skipCurrentValueOnSubscribe, bool allowDuplicateValues)

1. Overload

public static ReactiveProperty<T> Create()

View source

Summary: Creates a new instance of ReactiveProperty without requiring RequiresUnreferencedCode attributes. Uses RxSchedulers.TaskpoolScheduler as the default scheduler.

Returns: ReactiveProperty -- A new ReactiveProperty instance.

2. Overload

public static ReactiveProperty<T> Create(T? initialValue)

View source

Summary: Creates a new instance of ReactiveProperty with an initial value without requiring RequiresUnreferencedCode attributes. Uses RxSchedulers.TaskpoolScheduler as the default scheduler.

Parameters

NameTypeDescription
initialValueT?The initial value.

Returns: ReactiveProperty -- A new ReactiveProperty instance.

3. Overload

public static ReactiveProperty<T> Create(T? initialValue, bool skipCurrentValueOnSubscribe, bool allowDuplicateValues)

View source

Summary: Creates a new instance of ReactiveProperty with configuration options without requiring RequiresUnreferencedCode attributes. Uses RxSchedulers.TaskpoolScheduler as the default scheduler.

Parameters

NameTypeDescription
initialValueT?The initial value.
skipCurrentValueOnSubscribeboolif set to true [skip current value on subscribe].
allowDuplicateValuesboolif set to true [allow duplicate concurrent values].

Returns: ReactiveProperty -- A new ReactiveProperty instance.

4. Overload

public static ReactiveProperty<T> Create(T? initialValue, IScheduler scheduler, bool skipCurrentValueOnSubscribe, bool allowDuplicateValues)

View source

Summary: Creates a new instance of ReactiveProperty with a custom scheduler without requiring RequiresUnreferencedCode attributes.

Parameters

NameTypeDescription
initialValueT?The initial value.
scheduler[IScheduler](#The scheduler.
skipCurrentValueOnSubscribeboolif set to true [skip current value on subscribe].
allowDuplicateValuesboolif set to true [allow duplicate concurrent values].

Returns: ReactiveProperty -- A new ReactiveProperty instance.

Exceptions

TypeCondition
System.ArgumentNullExceptionThrown if scheduler is null.